home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 May (DVD) / Macworld Resource DVD May 2003.toast / Data / Software / Bonus / Utilities / MacBreakZX.sit / MacBreakZX / MacBreakZX.rsrc / shsc_5000 < prev    next >
Encoding:
Text File  |  2003-01-27  |  339 b   |  17 lines

  1. #! /bin/sh
  2.  
  3. # create the startup folder if necessary
  4. if [ ! -d /Library/StartupItems/ ]
  5. then
  6.     mkdir /Library/StartupItems/
  7.     chmode ugo+rwx /Library/StartupItems/
  8. fi
  9.  
  10. # move the MB folder to /Library/StartupItems/
  11. mv -f /Applications/MacBreakZ/MB /Library/StartupItems/
  12.  
  13. # Launch the application
  14. open /Applications/MacBreakZ/MacBreakZ\!
  15.  
  16.